Telegram Group & Telegram Channel
Examples :

fruits = ['orange', 'apple', 'pear', 'banana', 'kiwi', 'apple', 'banana']

#gives_count_of_apples
fruits.count('apple')
2

fruits.count('tangerine')
0

#to_get_index_of_banana
fruits.index('banana')
3

#Find_next_banana_starting_a_position_4
fruits.index('banana', 4)
6

#to_reverse_fruits_list
fruits.reverse()
fruits
['banana', 'apple', 'kiwi', 'banana', 'pear', 'apple', 'orange']

#to_add_item_at_the_end_of_the_list
fruits.append('grape')
fruits
['banana', 'apple', 'kiwi', 'banana', 'pear', 'apple', 'orange', 'grape']

#sort_the_fruits_list
fruits.sort()
fruits
['apple', 'apple', 'banana', 'banana', 'grape', 'kiwi', 'orange', 'pear']

#to_delete_the_last_item_in_the_list
fruits.pop()
'pear'

Share and Support @python_codes



tg-me.com/python_codes/105
Create:
Last Update:

Examples :

fruits = ['orange', 'apple', 'pear', 'banana', 'kiwi', 'apple', 'banana']

#gives_count_of_apples
fruits.count('apple')
2

fruits.count('tangerine')
0

#to_get_index_of_banana
fruits.index('banana')
3

#Find_next_banana_starting_a_position_4
fruits.index('banana', 4)
6

#to_reverse_fruits_list
fruits.reverse()
fruits
['banana', 'apple', 'kiwi', 'banana', 'pear', 'apple', 'orange']

#to_add_item_at_the_end_of_the_list
fruits.append('grape')
fruits
['banana', 'apple', 'kiwi', 'banana', 'pear', 'apple', 'orange', 'grape']

#sort_the_fruits_list
fruits.sort()
fruits
['apple', 'apple', 'banana', 'banana', 'grape', 'kiwi', 'orange', 'pear']

#to_delete_the_last_item_in_the_list
fruits.pop()
'pear'

Share and Support @python_codes

BY Python Codes


Warning: Undefined variable $i in /var/www/tg-me/post.php on line 283

Share with your friend now:
tg-me.com/python_codes/105

View MORE
Open in Telegram


Python Codes Telegram | DID YOU KNOW?

Date: |

China’s stock markets are some of the largest in the world, with total market capitalization reaching RMB 79 trillion (US$12.2 trillion) in 2020. China’s stock markets are seen as a crucial tool for driving economic growth, in particular for financing the country’s rapidly growing high-tech sectors.Although traditionally closed off to overseas investors, China’s financial markets have gradually been loosening restrictions over the past couple of decades. At the same time, reforms have sought to make it easier for Chinese companies to list on onshore stock exchanges, and new programs have been launched in attempts to lure some of China’s most coveted overseas-listed companies back to the country.

Python Codes from es


Telegram Python Codes
FROM USA